home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / PcodeDisassembly.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  447 b   |  22 lines  |  [TEXT/KAHL]

  1. /* PcodeDisassembly.h */
  2.  
  3. #ifndef Included_PcodeDisassembly_h
  4. #define Included_PcodeDisassembly_h
  5.  
  6. /* PcodeDisassembly module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Memory */
  12. /* PcodeObject */
  13. /* Numbers */
  14.  
  15. /* forward declarations */
  16. struct PcodeRec;
  17.  
  18. /* disassemble pcode and return a string block containing all the data */
  19. char*                            DisassemblePcode(struct PcodeRec* Pcode, char CarriageReturn);
  20.  
  21. #endif
  22.